home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python152_Src.lha / Python152_Source / Modules / protos / md5module.h < prev    next >
Text File  |  1999-04-25  |  407b  |  8 lines

  1. static md5object *newmd5object ( void );
  2. static void md5_dealloc ( md5object *md5p );
  3. static PyObject *md5_update ( md5object *self , PyObject *args );
  4. static PyObject *md5_digest ( md5object *self , PyObject *args );
  5. static PyObject *md5_copy ( md5object *self , PyObject *args );
  6. static PyObject *md5_getattr ( md5object *self , char *name );
  7. static PyObject *MD5_new ( PyObject *self , PyObject *args );
  8.